home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue41 / ComCorn / ListView2.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1998-11-30  |  480 b   |  31 lines

  1. unit ListView2;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   ComCtrls;
  8.  
  9. type
  10.   TListView2 = class(TListView)
  11.   private
  12.     { Private declarations }
  13.   protected
  14.     { Protected declarations }
  15.   public
  16.     { Public declarations }
  17.   published
  18.     { Published declarations }
  19.   end;
  20.  
  21. procedure Register;
  22.  
  23. implementation
  24.  
  25. procedure Register;
  26. begin
  27.   RegisterComponents('Samples', [TListView2]);
  28. end;
  29.  
  30. end.
  31.